.popup-container {
	position: relative;
	background-color: #000;
	z-index: 99999;
}
.popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 10;
}
.popup-wrap-pic {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 15;
	overflow-y: auto;
	bottom: 0;
	padding: 0 0 15px;
}
.popup-wrap-pic h3 {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	padding: 25px 0;
}
.popup-wrap-pic .row-pic {
	display: flex;
	justify-content: center;
}
.popup-wrap-pic .col-pic {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.popup-wrap-pic .col-pic p {
	font-size: 16px;
	text-align: center;
}
.popup-wrap-pic .col-pic.bordered {
	border: 2px solid #fff;
}
.popup-wrap-pic .col-pic-blocked>img {
	filter: blur(12px);
}
.popup-wrap-pic .col-overlay {
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	color: #fff;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.popup-wrap-pic .col-pic-blocked .col-overlay {
	background-color: rgba(255, 255, 255, 0.4);
}
.popup-wrap-pic .col-overlay>img {
	margin: 0 auto 10px;
}
.popup-wrap-pic .col-pic>img {
	max-width: 95px;
	height: 185px;
}
.popup-wrap-pic .col-pic-rotate-1 .pic {
	transform: rotateZ(180deg);
}
.popup-wrap-pic .col-pic-rotate-2 .pic {
	transform: rotateZ(360deg);
}

/*----> Responsive <---- */
/* Screen 480px */
@media (max-width: 500px) {
	.popup-wrap-pic .col-pic>img {
		max-width: 100px;
		height: 190px;
	}
}
/* Large height mobile size: Iphone XS/8 Plus/7 Plus/6s Plus, Gallaxy S8/S9 */
@media (max-width: 479px) and (max-height: 650px) {
	.popup-wrap-pic h3 {
		padding-bottom: 20px;
	}
	.popup-wrap-pic .col-pic>img {
		height: 155px;
	}
}
/* Iphone 8/7/6S, Galaxy S5/S6/S7 */
@media (max-width: 400px) and (max-height: 570px) {
	.popup-wrap-pic h3 {
		font-size: 19px;
	}
	.popup-wrap-pic .col-pic>img {
		height: 150px;
	}
}
/* Iphone SE */
@media (max-width: 400px) and (max-height: 460px) {
	.popup-wrap-pic h3 {
		font-size: 17px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.popup-wrap-pic .col-pic p {
		font-size: 14px;
	}
	.popup-wrap-pic .col-pic>img {
		height: 120px;
	}
}